home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue51
/
Construc
/
CGI51.dpr
< prev
next >
Wrap
Text File
|
1999-09-24
|
251b
|
17 lines
program CGI51;
{$APPTYPE CONSOLE}
uses
WebBroker,
CGIApp,
WebMod in 'WebMod.pas' {WebModule1: TWebModule};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TWebModule1, WebModule1);
Application.Run;
end.